home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedPaneImage.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  337 b   |  21 lines

  1. /*    ===============
  2.  *    PedPaneImage.hh
  3.  *    ===============
  4.  *    
  5.  *    Implemented by PedPaneImage.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedPane.hh"
  11.  
  12. class PedPaneImage : public PedPane {
  13. public:
  14.     PedPaneImage(PedView &inSuperView);
  15.     virtual ~PedPaneImage();
  16.     
  17. protected:
  18.     virtual void Draw();
  19.     virtual void Resize(short inWidth, short inHeight);
  20. };
  21.